How do you play a video using HTML5?
3765
11-Oct-2011
Anonymous User
11-Oct-2011We can display video using the <video> tag as shown below:
<video width="320" height="240" controls="controls">
<source src="test.mp4" type="video/mp4" />
</video>